home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / disk / vcc20.zip / ORDER.BAT < prev    next >
DOS Batch File  |  1996-07-01  |  449b  |  18 lines

  1. @REM This batch file will print ORDER.FRM
  2. @REM on your printer but asks yes/no first
  3. @
  4. @cls
  5. @echo This batch file will print the VCC ORDER.FRM file on your printer.
  6. @echo.
  7. @echo Would you like to print out the order form?
  8. @choice
  9. @if errorlevel 2 goto end
  10. @echo.
  11. @echo Please turn on your printer and
  12. @pause
  13. @copy order.frm prn
  14. @echo.
  15. @echo The VCC 3.0 order form should be printing now...
  16. @echo Thank you for registering VCC!
  17. :end
  18.